home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-26 | 623 b | 43 lines |
-
- # SMakefile for SCSIdevs
- #
- #
- # debug stuff ; enable SF
- #
- ##SF=debug=sf nover
- SF= nover
-
- PROTOS=Proto
-
- O=O/
-
- SO=ObjectName=$(O) noIcons
-
- OBJS = $(O)SCSIdevs.o
-
- clean:
- Delete $(PROTOS)/\#?.h >nil: \
- Delete $(OBJS) >nil: \
- Delete SCSIdevs
-
- all: indent protos SCSIdevs
-
-
- SCSIdevs : $(O)SCSIdevs.o
- slink FROM lib:c.o $(O)SCSIdevs.o TO SCSIdevs LIB \
- lib:sc.lib lib:amiga.lib noIcons quiet
-
-
- $(O)SCSIdevs.o : SCSIdevs.c
- sc $(SF) $(SO) SCSIdevs
-
-
- protos:
- sc nover genprotos GenProtoFile=$(PROTOS)/SCSIdevs_protos.h \
- SCSIdevs.c
- @Delete $(PROTOS)/\#?.info >nil:
-
- indent:
- indent -gnu SCSIdevs.c
-
-